home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / include / sys / resource.h < prev    next >
C/C++ Source or Header  |  1990-06-20  |  158b  |  18 lines

  1.  
  2. /*
  3.  *  SYS/RUSAGE.H
  4.  *
  5.  */
  6.  
  7. struct rtime {
  8.     long tv_sec;
  9.     long tv_usec;
  10. };
  11.  
  12. struct rusage {
  13.     struct rtime ru_utime;
  14.     struct rtime ru_stime;
  15. };
  16.  
  17.  
  18.